home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Delphi 5 Companion Tools CD / FreeWare / HVDLL / HVDLL.ZIP / TestDll.dpr < prev    next >
Encoding:
Text File  |  1999-08-04  |  248 b   |  14 lines

  1. library TestDll;
  2. { Example DLL that will be loaded and used by the TestImpProj application }
  3. uses
  4.   TestDllUnit in 'TestDllUnit.pas';
  5.  
  6. exports
  7.   Routine1 index 1,
  8.   Routine2 index 2,
  9.   Routine3 index 3,
  10.   Routine4 index 4;
  11.  
  12. begin
  13. end.
  14.